home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / etc / init / mountall.conf < prev    next >
Text File  |  2009-10-26  |  793b  |  36 lines

  1. # mountall - Mount filesystems on boot
  2. #
  3. # This helper mounts filesystems in the correct order as the devices
  4. # and mountpoints become available.
  5.  
  6. description    "Mount filesystems on boot"
  7.  
  8. start on startup
  9. stop on rcS
  10.  
  11. expect daemon
  12. task
  13.  
  14. emits virtual-filesystems
  15. emits local-filesystems
  16. emits remote-filesystems
  17. emits all-swaps
  18. emits all-filesystems
  19. emits filesystem
  20.  
  21. # temporary, until we have progress indication
  22. # and output capture (next week :p)
  23. console output
  24.  
  25. script
  26.     . /etc/default/rcS
  27.     [ -f /forcefsck ] && force_fsck="--force-fsck"
  28.     [ "$FSCKFIX" = "yes" ] && fsck_fix="--fsck-fix"
  29.     [ -n "$TMPTIME" ] && tmptime="--tmptime=$TMPTIME"
  30.     exec mountall --daemon $force_fsck $fsck_fix $tmptime
  31. end script
  32.  
  33. post-stop script
  34.     rm -f /forcefsck 2>dev/null || true
  35. end script
  36.